WorldTravel Sample: DBWeb controls
==================================

General
=======
	This sample demonstrates how to work with Borland's Data Aware Web controls (DB Web).  The sample connects to the Interbase database "worldtravel.gdb", which is included with this project.  The first time you run this sample, you will have to modify the BdpConnection's Connection String using the connection editor to point to this file.  To do this, right click on bdpConnection1, and select "Connection Editor".  Add a new Interbase Connection named "WorldTravel", and then set the "Database" property by browsing to the "worldtravel.gdb" in the current directory.  Note that you will need to add "localhost:" to the path shown in the Database property edit field, for example: "localhost:C:\program files\borland\bds\2.0\Demos\WebDB\worldtravel.gdb". Close the dialog.


How To Use
==========
	Run the application.  You can double click on the listbox of countries to bring up a new country, or scroll through the list of pictures for a given country.	

DB Web Features Included
========================

	The Demo show several features of DBWeb controls:
	1.  DBWebNavigator, with ButtonType set to ButtonIcon.
	2.  DBWebGrid
		- bound Columns
		- ReadOnly is true
		- Paging
	3.  DBWebDataSource.
		- connnected to a DataView with a RowFilter set to "NAME = 'SPAIN'.
		- Page_Load event shows how to change a RowFilter at runtime.  Note that whenever the underlying DataSet 
			is changed, a call to "DBWebDataSource.ClearSessionChanges(Page)" is required, since otherwise 
			Row information will be invalid.
	4.  DBWebImage.
		- The DBWeb Image displays the images at runtime and designtime.  
		- For better performance, the UseCacheFile property is set to true.  For this to work, you must 
			have allowed write rights to the Web directory.  If you get an unable to write file error,
			change userCacheFile to false.





